home *** CD-ROM | disk | FTP | other *** search
- package java.lang;
-
- public class Object {
- public final native Class getClass();
-
- public native int hashCode();
-
- public boolean equals(Object var1) {
- return this == var1;
- }
-
- protected native Object clone() throws CloneNotSupportedException;
-
- public String toString() {
- StringBuffer var10000 = (new StringBuffer()).append(this.getClass().getName()).append("@");
- int var1 = this.hashCode();
- return var10000.append(Integer.toUnsignedString(var1, 4)).toString();
- }
-
- public final native void notify();
-
- public final native void notifyAll();
-
- public final native void wait(long var1) throws InterruptedException;
-
- public final void wait(long var1, int var3) throws InterruptedException {
- if (var3 >= 500000 || var3 != 0 && var1 == 0L) {
- ++var1;
- }
-
- this.wait(var1);
- }
-
- public final void wait() throws InterruptedException {
- this.wait(0L);
- }
-
- protected void finalize() throws Throwable {
- }
- }
-